iT邦幫忙

DAY 11
0

C#技術分享系列 第 11

C#技術分享11-排序運算

  • 分享至 

  • xImage
  •  

排序是很常用到的方法
下面示範 由小排到大
如果是要從大排到小是使用
orderby str descending

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SortMethod
{
    class Program
    {
        static void Main(string[] args)
        {
            List<string> strList =
                new List<string> { "1","apple","ball","ba", "2", "4","5","8", "7" };
            IEnumerable<string> enumList =
                from str in strList
                orderby str
                select str;
            string orderbyString = "原始字串:";
            foreach (string str in strList)
            {
                orderbyString += str + ",";
            }
            Console.WriteLine(orderbyString);
            orderbyString = "排序後的字串:";
            foreach (string str in enumList)
            {
                orderbyString += str + ",";
            }
            Console.WriteLine(orderbyString);
            Console.ReadLine();               
        }
    }
}

上一篇
C#技術分享10-透過var建立實體物件
下一篇
C#技術分享12-LINQ 隱含型別var
系列文
C#技術分享30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言